home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / machserver / 1.098 / vm / vmSwapDir.h < prev    next >
C/C++ Source or Header  |  1990-09-12  |  708b  |  28 lines

  1. /*
  2.  * vmSwapDir.h --
  3.  *
  4.  *    Definitions for the swap directory monitor.
  5.  *
  6.  * Copyright (C) 1985 Regents of the University of California
  7.  * All rights reserved.
  8.  *
  9.  *
  10.  * $Header: /sprite/src/kernel/vm/RCS/vmSwapDir.h,v 1.1 90/09/11 10:45:16 shirriff Exp $ SPRITE (Berkeley)
  11.  */
  12.  
  13. #ifndef _VMSWAPDIR
  14. #define _VMSWAPDIR
  15.  
  16. /*
  17.  * The name of the swap directory.
  18.  */
  19. #define    VM_SWAP_DIR_NAME    "/swap/"
  20.  
  21. extern void Vm_OpenSwapDirectory _ARGS_((ClientData data, Proc_CallInfo *callInfoPtr));
  22. extern void VmReopenSwapDirectory _ARGS_((void));
  23. extern Fs_Stream *VmGetSwapStreamPtr _ARGS_((void));
  24. extern void VmDoneWithSwapStreamPtr _ARGS_((void));
  25. extern Boolean VmSwapStreamOk _ARGS_((void));
  26.  
  27. #endif /* _VMSWAPDIR */
  28.